home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / examples / compress / Makefile < prev   
Makefile  |  1995-06-18  |  417b  |  22 lines

  1. all ƒ compr
  2.  
  3. compr ƒ esbit.zo fileprio.zo huffman.zo compr.zo
  4.     camlc -W esbit.zo fileprio.zo huffman.zo compr.zo -o compr
  5.  
  6. clean ƒ
  7.     delete -i compr
  8.     delete -i ≈.z[io] ||echo
  9.     delete -i ≈.zix ||echo
  10.  
  11. .zi ƒ .mli
  12.     camlc -W -c {default}.mli
  13.  
  14. .zo ƒ .ml
  15.     camlc -W -c {default}.ml
  16.  
  17. compr.zo ƒ huffman.zi 
  18. decompr.zo ƒ huffman.zi 
  19. esbit.zo ƒ esbit.zi 
  20. fileprio.zo ƒ fileprio.zi 
  21. huffman.zo ƒ huffman.zi esbit.zi fileprio.zi 
  22.